home *** CD-ROM | disk | FTP | other *** search
/ Revista do CD-ROM 78 / CD-ROM 78.iso / Compl / Terragen / plugin / cpe320 / campov.inc < prev    next >
Encoding:
Text File  |  2000-01-23  |  871 b   |  46 lines

  1. /* Include file for CamPath/POV-Ray, defining textures to be
  2.    used for various objects. */
  3.  
  4. // The water's texture.
  5. #declare water_material = 
  6.    material
  7.    {   
  8.       texture
  9.       {      
  10.          pigment
  11.          {
  12.             color rgb <0.0, 0.0, 0.3>
  13.          }      
  14.          normal
  15.          {
  16.             bumps , 0.04
  17.          }      
  18.          finish
  19.          {
  20.             ambient 0.1
  21.             phong 1.0
  22.             phong_size 100.0
  23.             reflection 0.4
  24.          }
  25.       }   
  26.    }
  27.  
  28. // The heightfield's texture.
  29. #declare heightfield_material = 
  30.   material
  31.    {   
  32.       texture
  33.       {      
  34.          pigment
  35.          {
  36.             color rgb <1.0, 1.0, 0.927067>
  37.          }      
  38.          normal
  39.          {
  40.             bozo , 0.5
  41.             bump_size 3.0
  42.          }      
  43.          scale  2.0
  44.       }
  45.    }
  46.